.listings {
    display: none;
}

.section-header {
    text-align: center;
    margin: 40px 0 0 0;
    color: #8a2853;
}

.listings-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.listings-item {
    width: 400px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 4px;
    text-align: left;
    padding: 20px;
}


.add-listing-button {
    text-align: center;
    padding: 12px 30px;
    border: none;
    background-color: #00175f;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.listing-button-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.error-message {
    display: block;
    padding-bottom: 5px;
    color: red;
    font-size: 14px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin: 10px;
    flex-wrap: wrap;
}

.search-input {
    width: 200px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
}

.search-button {
    text-align: center;
    padding: 12px 30px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.search-clean-button {
    text-align: center;
    padding: 12px 30px;
    border: none;
    background-color: #f0f0f0;
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    gap: 10px 10px;
}

.search-result {
    text-align: center;
    display: block;
}